home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / me39src1.arc / EPATH.H < prev    next >
Text File  |  1987-06-27  |  898b  |  77 lines

  1. /*    EPATH:    This file contains certain info needed to locate the
  2.         MicroEMACS files on a system dependant basis.
  3.  
  4.                                     */
  5.  
  6. /*    possible names and paths of help files under different OSs    */
  7.  
  8. char *pathname[] =
  9.  
  10. #if    AMIGA
  11. {
  12.     ".emacsrc",
  13.     "emacs.hlp",
  14.     "",
  15.     "sys:c/",
  16.     "sys:t/",
  17.     "sys:s/",
  18.     ":c/",
  19.     ":t/",
  20.     ":s/"
  21. };
  22. #endif
  23.  
  24. #if    ST520
  25. {
  26.     "emacs.rc",
  27.     "emacs.hlp",
  28.     "\\",
  29.     "\\bin\\",
  30.     "\\util\\",
  31.     ""
  32. };
  33. #endif
  34.  
  35. #if    FINDER
  36. {
  37.     "emacs.rc",
  38.     "emacs.hlp",
  39.     "/bin",
  40.     "/sys/public",
  41.     ""
  42. };
  43. #endif
  44.  
  45. #if    MSDOS
  46. {
  47.     "emacs.rc",
  48.     "emacs.hlp",
  49.     "\\sys\\public\\",
  50.     "\\usr\\bin\\",
  51.     "\\bin\\",
  52.     "\\",
  53.     ""
  54. };
  55. #endif
  56.  
  57. #if    V7 | BSD | USG
  58. {
  59.     ".emacsrc",
  60.     "emacs.hlp",
  61.     "/usr/local/",
  62.     "/usr/lib/",
  63.     ""
  64. };
  65. #endif
  66.  
  67. #if    VMS
  68. {
  69.     "emacs.rc",
  70.     "emacs.hlp",
  71.     "",
  72.     "sys$sysdevice:[vmstools]"
  73. };
  74. #endif
  75.  
  76. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  77.